Fast Imaging Solar Spectrograph

Installation

Latest Version Anaconda-Server Badge Anaconda-Server Badge

If you don't already install Python with miniforge(Mamba), we recommend (re-)installing Python with miniforge. This will install conda and automatically configure the default channel to be conda-forge, and it is more safe and faster than the original conda.

First download the installer for your OS from here. Then install the launch file like below:

To avoid the conflict, we recommend using a new virtual environment to install fisspy. First, launch a terminal (under a UNIX-like system) or the miniforge Prompt (under Windows).Then create and activate a new virtual environment:

$ mamba create -n yourenvname
$ conda config --add channels conda-forge
$ conda config --set channel_priority strict
$ mamba activate yourenvname

Here 'mamba' can be relaced to the conda. you can freely change 'yourenvname' to a different environment name.


Now we cal install fisspy:

$ mamba install fisspy

This will install fisspy and all dependencies. You can also install other packages, such as Spyder, running mamba install <package_name>.

If you fail to download the FISSpy using the above options, you can download the package using the PyPI server, but we do not recommend this method because of the code dependency.

> pip install fisspy

To update the package, you first check the available verison of the FISSpy by running:

> mamba search fisspy

Then update or install specific version of the FISSpy

> mamba update fisspy
or
> mamba install fisspy=x.x.x